
Manage Storage Name problem

http://stackoverflow.com/questions/9715163/specifying-app-name-for-icloud-manage-storage-list

http://www.raywenderlich.com/60749/grand-central-dispatch-in-depth-part-1


find . -name 'Info.plist'  | while read file; do
echo $file;
{ plutil -p $file | grep CFBundleShortVersionString; } || echo Failed $file;
done;
